home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / snip1292.zip / ROUND.H < prev    next >
Text File  |  1992-12-26  |  212b  |  12 lines

  1. /*
  2. ** rounding macros by Dave Knapp
  3. */
  4.  
  5. /* round to integer */
  6.  
  7. #define iround(x) floor((x)+0.5)
  8.  
  9. /* round number n to d decimal points */
  10.  
  11. #define fround(n,d)  (floor((n)/pow(.1,(d))+.5)*pow(.1,(d)))
  12.